home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.001 / crossfir~ / eutl / xfile / xfile.h < prev   
C/C++ Source or Header  |  1994-09-19  |  330b  |  18 lines

  1. #ifndef __xfile_h
  2. #define __xfile_h
  3.  
  4. #include <errlib.h>
  5. #include <stdio.h>
  6. /* xmalloc uses the errlib stuff */
  7.  
  8. extern char *xfile_packagever;
  9. extern char *xfile_Eopen;
  10. extern char *xfile_Eclose;
  11. extern char *xfile_Eflush;
  12.  
  13. FILE *xfopen(char *filename,char *type);
  14. void xfclose(FILE *stream);
  15. void xfflush(FILE *stream);
  16.  
  17. #endif
  18.